Revert 'user files' link; the support for it was already reverted.
[lhc/web/wiklou.git] / includes / SkinTemplate.php
1 <?php
2 # This program is free software; you can redistribute it and/or modify
3 # it under the terms of the GNU General Public License as published by
4 # the Free Software Foundation; either version 2 of the License, or
5 # (at your option) any later version.
6 #
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
11 #
12 # You should have received a copy of the GNU General Public License along
13 # with this program; if not, write to the Free Software Foundation, Inc.,
14 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 # http://www.gnu.org/copyleft/gpl.html
16
17 /**
18 * Template-filler skin base class
19 * Formerly generic PHPTal (http://phptal.sourceforge.net/) skin
20 * Based on Brion's smarty skin
21 * Copyright (C) Gabriel Wicke -- http://www.aulinx.de/
22 *
23 * Todo: Needs some serious refactoring into functions that correspond
24 * to the computations individual esi snippets need. Most importantly no body
25 * parsing for most of those of course.
26 *
27 * PHPTAL support has been moved to a subclass in SkinPHPTal.php,
28 * and is optional. You'll need to install PHPTAL manually to use
29 * skins that depend on it.
30 *
31 * @package MediaWiki
32 * @subpackage Skins
33 */
34
35 /**
36 * This is not a valid entry point, perform no further processing unless
37 * MEDIAWIKI is defined
38 */
39 if( defined( 'MEDIAWIKI' ) ) {
40
41 require_once 'GlobalFunctions.php';
42
43 /**
44 * Wrapper object for MediaWiki's localization functions,
45 * to be passed to the template engine.
46 *
47 * @access private
48 * @package MediaWiki
49 */
50 class MediaWiki_I18N {
51 var $_context = array();
52
53 function set($varName, $value) {
54 $this->_context[$varName] = $value;
55 }
56
57 function translate($value) {
58 $fname = 'SkinTemplate-translate';
59 wfProfileIn( $fname );
60
61 // Hack for i18n:attributes in PHPTAL 1.0.0 dev version as of 2004-10-23
62 $value = preg_replace( '/^string:/', '', $value );
63
64 $value = wfMsg( $value );
65 // interpolate variables
66 while (preg_match('/\$([0-9]*?)/sm', $value, $m)) {
67 list($src, $var) = $m;
68 wfSuppressWarnings();
69 $varValue = $this->_context[$var];
70 wfRestoreWarnings();
71 $value = str_replace($src, $varValue, $value);
72 }
73 wfProfileOut( $fname );
74 return $value;
75 }
76 }
77
78 /**
79 *
80 * @package MediaWiki
81 */
82 class SkinTemplate extends Skin {
83 /**#@+
84 * @access private
85 */
86
87 /**
88 * Name of our skin, set in initPage()
89 * It probably need to be all lower case.
90 */
91 var $skinname;
92
93 /**
94 * Stylesheets set to use
95 * Sub directory in ./skins/ where various stylesheets are located
96 */
97 var $stylename;
98
99 /**
100 * For QuickTemplate, the name of the subclass which
101 * will actually fill the template.
102 *
103 * In PHPTal mode, name of PHPTal template to be used.
104 * '.pt' will be automaticly added to it on PHPTAL object creation
105 */
106 var $template;
107
108 /**#@-*/
109
110 /**
111 * Setup the base parameters...
112 * Child classes should override this to set the name,
113 * style subdirectory, and template filler callback.
114 *
115 * @param OutputPage $out
116 */
117 function initPage( &$out ) {
118 parent::initPage( $out );
119 $this->skinname = 'monobook';
120 $this->stylename = 'monobook';
121 $this->template = 'QuickTemplate';
122 }
123
124 /**
125 * Create the template engine object; we feed it a bunch of data
126 * and eventually it spits out some HTML. Should have interface
127 * roughly equivalent to PHPTAL 0.7.
128 *
129 * @param string $callback (or file)
130 * @param string $repository subdirectory where we keep template files
131 * @param string $cache_dir
132 * @return object
133 * @access private
134 */
135 function setupTemplate( $classname, $repository=false, $cache_dir=false ) {
136 return new $classname();
137 }
138
139 /**
140 * initialize various variables and generate the template
141 *
142 * @param OutputPage $out
143 * @access public
144 */
145 function outputPage( &$out ) {
146 global $wgTitle, $wgArticle, $wgUser, $wgLang, $wgContLang, $wgOut;
147 global $wgScript, $wgStylePath, $wgContLanguageCode;
148 global $wgMimeType, $wgJsMimeType, $wgOutputEncoding, $wgRequest;
149 global $wgDisableCounters, $wgLogo, $action, $wgFeedClasses, $wgHideInterlanguageLinks;
150 global $wgMaxCredits, $wgShowCreditsIfMax;
151 global $wgPageShowWatchingUsers;
152 global $wgUseTrackbacks;
153
154 $fname = 'SkinTemplate::outputPage';
155 wfProfileIn( $fname );
156
157 extract( $wgRequest->getValues( 'oldid', 'diff' ) );
158
159 wfProfileIn( "$fname-init" );
160 $this->initPage( $out );
161
162 $this->mTitle =& $wgTitle;
163 $this->mUser =& $wgUser;
164
165 $tpl = $this->setupTemplate( $this->template, 'skins' );
166
167 #if ( $wgUseDatabaseMessages ) { // uncomment this to fall back to GetText
168 $tpl->setTranslator(new MediaWiki_I18N());
169 #}
170 wfProfileOut( "$fname-init" );
171
172 wfProfileIn( "$fname-stuff" );
173 $this->thispage = $this->mTitle->getPrefixedDbKey();
174 $this->thisurl = $this->mTitle->getPrefixedURL();
175 $this->loggedin = $wgUser->isLoggedIn();
176 $this->iscontent = ($this->mTitle->getNamespace() != NS_SPECIAL );
177 $this->iseditable = ($this->iscontent and !($action == 'edit' or $action == 'submit'));
178 $this->username = $wgUser->getName();
179 $userPage = $wgUser->getUserPage();
180 $this->userpage = $userPage->getPrefixedText();
181
182 if ( $wgUser->isLoggedIn() || $this->showIPinHeader() ) {
183 $this->userpageUrlDetails = $this->makeUrlDetails($this->userpage);
184 } else {
185 # This won't be used in the standard skins, but we define it to preserve the interface
186 # To save time, we check for existence
187 $this->userpageUrlDetails = $this->makeKnownUrlDetails($this->userpage);
188 }
189
190 $this->usercss = $this->userjs = $this->userjsprev = false;
191 $this->setupUserCss();
192 $this->setupUserJs();
193 $this->titletxt = $this->mTitle->getPrefixedText();
194 wfProfileOut( "$fname-stuff" );
195
196 wfProfileIn( "$fname-stuff2" );
197 $tpl->set( 'title', $wgOut->getPageTitle() );
198 $tpl->set( 'pagetitle', $wgOut->getHTMLTitle() );
199
200 $tpl->setRef( "thispage", $this->thispage );
201 $subpagestr = $this->subPageSubtitle();
202 $tpl->set(
203 'subtitle', !empty($subpagestr)?
204 '<span class="subpages">'.$subpagestr.'</span>'.$out->getSubtitle():
205 $out->getSubtitle()
206 );
207 $undelete = $this->getUndeleteLink();
208 $tpl->set(
209 "undelete", !empty($undelete)?
210 '<span class="subpages">'.$undelete.'</span>':
211 ''
212 );
213
214 $tpl->set( 'catlinks', $this->getCategories());
215 if( $wgOut->isSyndicated() ) {
216 $feeds = array();
217 foreach( $wgFeedClasses as $format => $class ) {
218 $feeds[$format] = array(
219 'text' => $format,
220 'href' => $wgRequest->appendQuery( "feed=$format" )
221 );
222 }
223 $tpl->setRef( 'feeds', $feeds );
224 } else {
225 $tpl->set( 'feeds', false );
226 }
227 if ($wgUseTrackbacks && $out->isArticleRelated())
228 $tpl->set( 'trackbackhtml', $wgTitle->trackbackRDF());
229
230 $tpl->setRef( 'mimetype', $wgMimeType );
231 $tpl->setRef( 'jsmimetype', $wgJsMimeType );
232 $tpl->setRef( 'charset', $wgOutputEncoding );
233 $tpl->set( 'headlinks', $out->getHeadLinks() );
234 $tpl->set('headscripts', $out->getScript() );
235 $tpl->setRef( 'wgScript', $wgScript );
236 $tpl->setRef( 'skinname', $this->skinname );
237 $tpl->setRef( 'stylename', $this->stylename );
238 $tpl->set( 'printable', $wgRequest->getBool( 'printable' ) );
239 $tpl->setRef( 'loggedin', $this->loggedin );
240 $tpl->set('nsclass', 'ns-'.$this->mTitle->getNamespace());
241 $tpl->set('notspecialpage', $this->mTitle->getNamespace() != NS_SPECIAL);
242 /* XXX currently unused, might get useful later
243 $tpl->set( "editable", ($this->mTitle->getNamespace() != NS_SPECIAL ) );
244 $tpl->set( "exists", $this->mTitle->getArticleID() != 0 );
245 $tpl->set( "watch", $this->mTitle->userIsWatching() ? "unwatch" : "watch" );
246 $tpl->set( "protect", count($this->mTitle->isProtected()) ? "unprotect" : "protect" );
247 $tpl->set( "helppage", wfMsg('helppage'));
248 */
249 $tpl->set( 'searchaction', $this->escapeSearchLink() );
250 $tpl->set( 'search', trim( $wgRequest->getVal( 'search' ) ) );
251 $tpl->setRef( 'stylepath', $wgStylePath );
252 $tpl->setRef( 'logopath', $wgLogo );
253 $tpl->setRef( "lang", $wgContLanguageCode );
254 $tpl->set( 'dir', $wgContLang->isRTL() ? "rtl" : "ltr" );
255 $tpl->set( 'rtl', $wgContLang->isRTL() );
256 $tpl->set( 'langname', $wgContLang->getLanguageName( $wgContLanguageCode ) );
257 $tpl->set( 'showjumplinks', $wgUser->getOption( 'showjumplinks' ) );
258 $tpl->setRef( 'username', $this->username );
259 $tpl->setRef( 'userpage', $this->userpage);
260 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href']);
261 $tpl->set( 'pagecss', $this->setupPageCss() );
262 $tpl->setRef( 'usercss', $this->usercss);
263 $tpl->setRef( 'userjs', $this->userjs);
264 $tpl->setRef( 'userjsprev', $this->userjsprev);
265 global $wgUseSiteJs;
266 if ($wgUseSiteJs) {
267 if($this->loggedin) {
268 $tpl->set( 'jsvarurl', $this->makeUrl('-','action=raw&smaxage=0&gen=js') );
269 } else {
270 $tpl->set( 'jsvarurl', $this->makeUrl('-','action=raw&gen=js') );
271 }
272 } else {
273 $tpl->set('jsvarurl', false);
274 }
275 if( $wgUser->getNewtalk() ) {
276 $usertitle = $this->mUser->getUserPage();
277 $usertalktitle = $usertitle->getTalkPage();
278 if( !$usertalktitle->equals( $this->mTitle ) ) {
279 $ntl = wfMsg( 'youhavenewmessages',
280 $this->makeKnownLinkObj(
281 $usertalktitle,
282 wfMsgHtml( 'newmessageslink' )
283 ),
284 $this->makeKnownLinkObj(
285 $usertalktitle,
286 wfMsgHtml( 'newmessagesdifflink' ),
287 'diff=cur'
288 )
289 );
290 # Disable Cache
291 $wgOut->setSquidMaxage(0);
292 }
293 } else {
294 $ntl = '';
295 }
296 wfProfileOut( "$fname-stuff2" );
297
298 wfProfileIn( "$fname-stuff3" );
299 $tpl->setRef( 'newtalk', $ntl );
300 $tpl->setRef( 'skin', $this);
301 $tpl->set( 'logo', $this->logoText() );
302 if ( $wgOut->isArticle() and (!isset( $oldid ) or isset( $diff )) and 0 != $wgArticle->getID() ) {
303 if ( !$wgDisableCounters ) {
304 $viewcount = $wgLang->formatNum( $wgArticle->getCount() );
305 if ( $viewcount ) {
306 $tpl->set('viewcount', wfMsg( "viewcount", $viewcount ));
307 } else {
308 $tpl->set('viewcount', false);
309 }
310 } else {
311 $tpl->set('viewcount', false);
312 }
313
314 if ($wgPageShowWatchingUsers) {
315 $dbr =& wfGetDB( DB_SLAVE );
316 extract( $dbr->tableNames( 'watchlist' ) );
317 $sql = "SELECT COUNT(*) AS n FROM $watchlist
318 WHERE wl_title='" . $dbr->strencode($this->mTitle->getDBKey()) .
319 "' AND wl_namespace=" . $this->mTitle->getNamespace() ;
320 $res = $dbr->query( $sql, 'SkinPHPTal::outputPage');
321 $x = $dbr->fetchObject( $res );
322 $numberofwatchingusers = $x->n;
323 if ($numberofwatchingusers > 0) {
324 $tpl->set('numberofwatchingusers', wfMsg('number_of_watching_users_pageview', $numberofwatchingusers));
325 } else {
326 $tpl->set('numberofwatchingusers', false);
327 }
328 } else {
329 $tpl->set('numberofwatchingusers', false);
330 }
331
332 $tpl->set('copyright',$this->getCopyright());
333
334 $this->credits = false;
335
336 if (isset($wgMaxCredits) && $wgMaxCredits != 0) {
337 require_once("Credits.php");
338 $this->credits = getCredits($wgArticle, $wgMaxCredits, $wgShowCreditsIfMax);
339 } else {
340 $tpl->set('lastmod', $this->lastModified());
341 }
342
343 $tpl->setRef( 'credits', $this->credits );
344
345 } elseif ( isset( $oldid ) && !isset( $diff ) ) {
346 $tpl->set('copyright', $this->getCopyright());
347 $tpl->set('viewcount', false);
348 $tpl->set('lastmod', false);
349 $tpl->set('credits', false);
350 $tpl->set('numberofwatchingusers', false);
351 } else {
352 $tpl->set('copyright', false);
353 $tpl->set('viewcount', false);
354 $tpl->set('lastmod', false);
355 $tpl->set('credits', false);
356 $tpl->set('numberofwatchingusers', false);
357 }
358 wfProfileOut( "$fname-stuff3" );
359
360 wfProfileIn( "$fname-stuff4" );
361 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
362 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
363 $tpl->set( 'disclaimer', $this->disclaimerLink() );
364 $tpl->set( 'privacy', $this->privacyLink() );
365 $tpl->set( 'about', $this->aboutLink() );
366
367 $tpl->setRef( 'debug', $out->mDebugtext );
368 $tpl->set( 'reporttime', $out->reportTime() );
369 $tpl->set( 'sitenotice', wfGetSiteNotice() );
370
371 $printfooter = "<div class=\"printfooter\">\n" . $this->printSource() . "</div>\n";
372 $out->mBodytext .= $printfooter ;
373 $tpl->setRef( 'bodytext', $out->mBodytext );
374
375 # Language links
376 $language_urls = array();
377
378 if ( !$wgHideInterlanguageLinks ) {
379 foreach( $wgOut->getLanguageLinks() as $l ) {
380 $tmp = explode( ':', $l, 2 );
381 $class = 'interwiki-' . $tmp[0];
382 unset($tmp);
383 $nt = Title::newFromText( $l );
384 $language_urls[] = array(
385 'href' => $nt->getFullURL(),
386 'text' => ($wgContLang->getLanguageName( $nt->getInterwiki()) != ''?$wgContLang->getLanguageName( $nt->getInterwiki()) : $l),
387 'class' => $class
388 );
389 }
390 }
391 if(count($language_urls)) {
392 $tpl->setRef( 'language_urls', $language_urls);
393 } else {
394 $tpl->set('language_urls', false);
395 }
396 wfProfileOut( "$fname-stuff4" );
397
398 # Personal toolbar
399 $tpl->set('personal_urls', $this->buildPersonalUrls());
400 $content_actions = $this->buildContentActionUrls();
401 $tpl->setRef('content_actions', $content_actions);
402
403 // XXX: attach this from javascript, same with section editing
404 if($this->iseditable && $wgUser->getOption("editondblclick") )
405 {
406 $tpl->set('body_ondblclick', 'document.location = "' .$content_actions['edit']['href'] .'";');
407 } else {
408 $tpl->set('body_ondblclick', false);
409 }
410 if( $this->iseditable && $wgUser->getOption( 'editsectiononrightclick' ) ) {
411 $tpl->set( 'body_onload', 'setupRightClickEdit()' );
412 } else {
413 $tpl->set( 'body_onload', false );
414 }
415 $tpl->set( 'sidebar', $this->buildSidebar() );
416 $tpl->set( 'nav_urls', $this->buildNavUrls() );
417
418 // execute template
419 wfProfileIn( "$fname-execute" );
420 $res = $tpl->execute();
421 wfProfileOut( "$fname-execute" );
422
423 // result may be an error
424 $this->printOrError( $res );
425 wfProfileOut( $fname );
426 }
427
428 /**
429 * Output the string, or print error message if it's
430 * an error object of the appropriate type.
431 * For the base class, assume strings all around.
432 *
433 * @param mixed $str
434 * @access private
435 */
436 function printOrError( &$str ) {
437 echo $str;
438 }
439
440 /**
441 * build array of urls for personal toolbar
442 * @return array
443 * @access private
444 */
445 function buildPersonalUrls() {
446 global $wgTitle, $wgShowIPinHeader, $wgContLang;
447
448 $fname = 'SkinTemplate::buildPersonalUrls';
449 $pageurl = $wgTitle->getLocalURL();
450 wfProfileIn( $fname );
451
452 /* set up the default links for the personal toolbar */
453 $personal_urls = array();
454 if ($this->loggedin) {
455 $personal_urls['userpage'] = array(
456 'text' => $this->username,
457 'href' => &$this->userpageUrlDetails['href'],
458 'class' => $this->userpageUrlDetails['exists']?false:'new',
459 'active' => ( $this->userpageUrlDetails['href'] == $pageurl )
460 );
461 $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage);
462 $personal_urls['mytalk'] = array(
463 'text' => wfMsg('mytalk'),
464 'href' => &$usertalkUrlDetails['href'],
465 'class' => $usertalkUrlDetails['exists']?false:'new',
466 'active' => ( $usertalkUrlDetails['href'] == $pageurl )
467 );
468 $href = $this->makeSpecialUrl('Preferences');
469 $personal_urls['preferences'] = array(
470 'text' => wfMsg('preferences'),
471 'href' => $this->makeSpecialUrl('Preferences'),
472 'active' => ( $href == $pageurl )
473 );
474 $href = $this->makeSpecialUrl('Watchlist');
475 $personal_urls['watchlist'] = array(
476 'text' => wfMsg('watchlist'),
477 'href' => $href,
478 'active' => ( $href == $pageurl )
479 );
480 $href = $this->makeSpecialUrl("Contributions/$this->username");
481 $personal_urls['mycontris'] = array(
482 'text' => wfMsg('mycontris'),
483 'href' => $href
484 # FIXME # 'active' => ( $href == $pageurl . '/' . $this->username )
485 );
486 $personal_urls['logout'] = array(
487 'text' => wfMsg('userlogout'),
488 'href' => $this->makeSpecialUrl( 'Userlogout',
489 $wgTitle->getNamespace() === NS_SPECIAL && $wgTitle->getText() === 'Preferences' ? '' : "returnto={$this->thisurl}"
490 )
491 );
492 } else {
493 if( $wgShowIPinHeader && isset( $_COOKIE[ini_get("session.name")] ) ) {
494 $href = &$this->userpageUrlDetails['href'];
495 $personal_urls['anonuserpage'] = array(
496 'text' => $this->username,
497 'href' => $href,
498 'class' => $this->userpageUrlDetails['exists']?false:'new',
499 'active' => ( $pageurl == $href )
500 );
501 $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage);
502 $href = &$usertalkUrlDetails['href'];
503 $personal_urls['anontalk'] = array(
504 'text' => wfMsg('anontalk'),
505 'href' => $href,
506 'class' => $usertalkUrlDetails['exists']?false:'new',
507 'active' => ( $pageurl == $href )
508 );
509 $personal_urls['anonlogin'] = array(
510 'text' => wfMsg('userlogin'),
511 'href' => $this->makeSpecialUrl('Userlogin', 'returnto=' . $this->thisurl ),
512 'active' => ( NS_SPECIAL == $wgTitle->getNamespace() && 'Userlogin' == $wgTitle->getDBkey() )
513 );
514 } else {
515
516 $personal_urls['login'] = array(
517 'text' => wfMsg('userlogin'),
518 'href' => $this->makeSpecialUrl('Userlogin', 'returnto=' . $this->thisurl ),
519 'active' => ( NS_SPECIAL == $wgTitle->getNamespace() && 'Userlogin' == $wgTitle->getDBkey() )
520 );
521 }
522 }
523 wfProfileOut( $fname );
524 return $personal_urls;
525 }
526
527 /**
528 * Returns true if the IP should be shown in the header
529 */
530 function showIPinHeader() {
531 global $wgShowIPinHeader;
532 return $wgShowIPinHeader && isset( $_COOKIE[ini_get("session.name")] );
533 }
534
535 function tabAction( $title, $message, $selected, $query='', $checkEdit=false ) {
536 $classes = array();
537 if( $selected ) {
538 $classes[] = 'selected';
539 }
540 if( $checkEdit && $title->getArticleId() == 0 ) {
541 $classes[] = 'new';
542 $query = 'action=edit';
543 }
544
545 $text = wfMsg( $message );
546 if ( $text == "&lt;$message&gt;" ) {
547 $text = html_entity_decode($text);
548 }
549
550 return array(
551 'class' => implode( ' ', $classes ),
552 'text' => $text,
553 'href' => $title->getLocalUrl( $query ) );
554 }
555
556 function makeTalkUrlDetails( $name, $urlaction='' ) {
557 $title = Title::newFromText( $name );
558 $title = $title->getTalkPage();
559 $this->checkTitle($title, $name);
560 return array(
561 'href' => $title->getLocalURL( $urlaction ),
562 'exists' => $title->getArticleID() != 0?true:false
563 );
564 }
565
566 function makeArticleUrlDetails( $name, $urlaction='' ) {
567 $title = Title::newFromText( $name );
568 $title= $title->getSubjectPage();
569 $this->checkTitle($title, $name);
570 return array(
571 'href' => $title->getLocalURL( $urlaction ),
572 'exists' => $title->getArticleID() != 0?true:false
573 );
574 }
575
576 /**
577 * an array of edit links by default used for the tabs
578 * @return array
579 * @access private
580 */
581 function buildContentActionUrls () {
582 global $wgContLang, $wgDBprefix;
583 $fname = 'SkinTemplate::buildContentActionUrls';
584 wfProfileIn( $fname );
585
586 global $wgUser, $wgRequest;
587 $action = $wgRequest->getText( 'action' );
588 $section = $wgRequest->getText( 'section' );
589 $content_actions = array();
590
591 $prevent_active_tabs = false ;
592 wfRunHooks( 'SkinTemplatePreventOtherActiveTabs', array( &$this , &$prevent_active_tabs ) ) ;
593
594 if( $this->iscontent ) {
595 $subjpage = $this->mTitle->getSubjectPage();
596 $talkpage = $this->mTitle->getTalkPage();
597
598 $nskey = $this->getNameSpaceKey();
599 $content_actions[$nskey] = $this->tabAction(
600 $subjpage,
601 $nskey,
602 !$this->mTitle->isTalkPage() && !$prevent_active_tabs,
603 '', true);
604
605 $content_actions['talk'] = $this->tabAction(
606 $talkpage,
607 'talk',
608 $this->mTitle->isTalkPage() && !$prevent_active_tabs,
609 '',
610 true);
611
612 wfProfileIn( "$fname-edit" );
613 if ( $this->mTitle->userCanEdit() ) {
614 $istalk = $this->mTitle->isTalkPage();
615 $istalkclass = $istalk?' istalk':'';
616 $content_actions['edit'] = array(
617 'class' => ((($action == 'edit' or $action == 'submit') and $section != 'new') ? 'selected' : '').$istalkclass,
618 'text' => wfMsg('edit'),
619 'href' => $this->mTitle->getLocalUrl( $this->editUrlOptions() )
620 );
621
622 if ( $istalk ) {
623 $content_actions['addsection'] = array(
624 'class' => $section == 'new'?'selected':false,
625 'text' => wfMsg('addsection'),
626 'href' => $this->mTitle->getLocalUrl( 'action=edit&section=new' )
627 );
628 }
629 } else {
630 $content_actions['viewsource'] = array(
631 'class' => ($action == 'edit') ? 'selected' : false,
632 'text' => wfMsg('viewsource'),
633 'href' => $this->mTitle->getLocalUrl( $this->editUrlOptions() )
634 );
635 }
636 wfProfileOut( "$fname-edit" );
637
638 wfProfileIn( "$fname-live" );
639 if ( $this->mTitle->getArticleId() ) {
640
641 $content_actions['history'] = array(
642 'class' => ($action == 'history') ? 'selected' : false,
643 'text' => wfMsg('history_short'),
644 'href' => $this->mTitle->getLocalUrl( 'action=history')
645 );
646
647 if ( $this->mTitle->getNamespace() !== NS_MEDIAWIKI && $wgUser->isAllowed( 'protect' ) ) {
648 if(!$this->mTitle->isProtected()){
649 $content_actions['protect'] = array(
650 'class' => ($action == 'protect') ? 'selected' : false,
651 'text' => wfMsg('protect'),
652 'href' => $this->mTitle->getLocalUrl( 'action=protect' )
653 );
654
655 } else {
656 $content_actions['unprotect'] = array(
657 'class' => ($action == 'unprotect') ? 'selected' : false,
658 'text' => wfMsg('unprotect'),
659 'href' => $this->mTitle->getLocalUrl( 'action=unprotect' )
660 );
661 }
662 }
663 if($wgUser->isAllowed('delete')){
664 $content_actions['delete'] = array(
665 'class' => ($action == 'delete') ? 'selected' : false,
666 'text' => wfMsg('delete'),
667 'href' => $this->mTitle->getLocalUrl( 'action=delete' )
668 );
669 }
670 if ( $this->mTitle->userCanMove()) {
671 $content_actions['move'] = array(
672 'class' => ($this->mTitle->getDbKey() == 'Movepage' and $this->mTitle->getNamespace == NS_SPECIAL) ? 'selected' : false,
673 'text' => wfMsg('move'),
674 'href' => $this->makeSpecialUrl("Movepage/$this->thispage" )
675 );
676 }
677 } else {
678 //article doesn't exist or is deleted
679 if($wgUser->isAllowed('delete')){
680 if( $n = $this->mTitle->isDeleted() ) {
681 $content_actions['undelete'] = array(
682 'class' => false,
683 'text' => ($n == 1) ? wfMsg( 'undelete_short1' ) : wfMsg('undelete_short', $n ),
684 'href' => $this->makeSpecialUrl("Undelete/$this->thispage")
685 );
686 }
687 }
688 }
689 wfProfileOut( "$fname-live" );
690
691 if( $this->loggedin ) {
692 if( !$this->mTitle->userIsWatching()) {
693 $content_actions['watch'] = array(
694 'class' => ($action == 'watch' or $action == 'unwatch') ? 'selected' : false,
695 'text' => wfMsg('watch'),
696 'href' => $this->mTitle->getLocalUrl( 'action=watch' )
697 );
698 } else {
699 $content_actions['unwatch'] = array(
700 'class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : false,
701 'text' => wfMsg('unwatch'),
702 'href' => $this->mTitle->getLocalUrl( 'action=unwatch' )
703 );
704 }
705 }
706
707 wfRunHooks( 'SkinTemplateTabs', array( &$this , &$content_actions ) ) ;
708 } else {
709 /* show special page tab */
710
711 $content_actions['article'] = array(
712 'class' => 'selected',
713 'text' => wfMsg('specialpage'),
714 'href' => $wgRequest->getRequestURL(), // @bug 2457, 2510
715 );
716
717 wfRunHooks( 'SkinTemplateBuildContentActionUrlsAfterSpecialPage', array( &$this, &$content_actions ) );
718 }
719
720 /* show links to different language variants */
721 global $wgDisableLangConversion;
722 $variants = $wgContLang->getVariants();
723 if( !$wgDisableLangConversion && sizeof( $variants ) > 1 ) {
724 $preferred = $wgContLang->getPreferredVariant();
725 $actstr = '';
726 if( $action )
727 $actstr = 'action=' . $action . '&';
728 $vcount=0;
729 foreach( $variants as $code ) {
730 $varname = $wgContLang->getVariantname( $code );
731 if( $varname == 'disable' )
732 continue;
733 $selected = ( $code == $preferred )? 'selected' : false;
734 $content_actions['varlang-' . $vcount] = array(
735 'class' => $selected,
736 'text' => $varname,
737 'href' => $this->mTitle->getLocalUrl( $actstr . 'variant=' . $code )
738 );
739 $vcount ++;
740 }
741 }
742
743 wfRunHooks( 'SkinTemplateContentActions', array( &$content_actions ) );
744
745 wfProfileOut( $fname );
746 return $content_actions;
747 }
748
749
750
751 /**
752 * build array of common navigation links
753 * @return array
754 * @access private
755 */
756 function buildNavUrls () {
757 global $wgUseTrackbacks, $wgTitle, $wgArticle;
758
759 $fname = 'SkinTemplate::buildNavUrls';
760 wfProfileIn( $fname );
761
762 global $wgUser, $wgRequest;
763 global $wgSiteSupportPage, $wgEnableUploads, $wgUploadNavigationUrl;
764
765 $action = $wgRequest->getText( 'action' );
766 $oldid = $wgRequest->getVal( 'oldid' );
767 $diff = $wgRequest->getVal( 'diff' );
768
769 $nav_urls = array();
770 $nav_urls['mainpage'] = array('href' => $this->makeI18nUrl('mainpage'));
771 $nav_urls['randompage'] = array('href' => $this->makeSpecialUrl('Random'));
772 $nav_urls['recentchanges'] = array('href' => $this->makeSpecialUrl('Recentchanges'));
773 $nav_urls['currentevents'] = (wfMsgForContent('currentevents') != '-') ? array('href' => $this->makeI18nUrl('currentevents')) : false;
774 $nav_urls['portal'] = (wfMsgForContent('portal') != '-') ? array('href' => $this->makeI18nUrl('portal-url')) : false;
775 $nav_urls['bugreports'] = array('href' => $this->makeI18nUrl('bugreportspage'));
776 // $nav_urls['sitesupport'] = array('href' => $this->makeI18nUrl('sitesupportpage'));
777 $nav_urls['sitesupport'] = array('href' => $wgSiteSupportPage);
778 $nav_urls['help'] = array('href' => $this->makeI18nUrl('helppage'));
779 if( $wgEnableUploads ) {
780 if ($wgUploadNavigationUrl) {
781 $nav_urls['upload'] = array('href' => $wgUploadNavigationUrl );
782 } else {
783 $nav_urls['upload'] = array('href' => $this->makeSpecialUrl('Upload'));
784 }
785 } else {
786 if ($wgUploadNavigationUrl)
787 $nav_urls['upload'] = array('href' => $wgUploadNavigationUrl );
788 else
789 $nav_urls['upload'] = false;
790 }
791 $nav_urls['specialpages'] = array('href' => $this->makeSpecialUrl('Specialpages'));
792
793
794 // A print stylesheet is attached to all pages, but nobody ever
795 // figures that out. :) Add a link...
796 if( $this->iscontent && ($action == '' || $action == 'view' || $action == 'purge' ) ) {
797 $revid = $wgArticle->getRevIdFetched();
798 if ( !( $revid == 0 ) )
799 $nav_urls['print'] = array(
800 'text' => wfMsg( 'printableversion' ),
801 'href' => $wgRequest->appendQuery( 'printable=yes' )
802 );
803
804 // Also add a "permalink" while we're at it
805 if ( (int)$oldid ) {
806 $nav_urls['permalink'] = array(
807 'text' => wfMsg( 'permalink' ),
808 'href' => ''
809 );
810 } else {
811 if ( !( $revid == 0 ) )
812 $nav_urls['permalink'] = array(
813 'text' => wfMsg( 'permalink' ),
814 'href' => $wgTitle->getLocalURL( "oldid=$revid" )
815 );
816 }
817
818 wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink', array( &$this, &$nav_urls, &$oldid, &$revid ) );
819 }
820
821 if( $this->mTitle->getNamespace() != NS_SPECIAL) {
822 $nav_urls['whatlinkshere'] = array(
823 'href' => $this->makeSpecialUrl("Whatlinkshere/$this->thispage")
824 );
825 if( $this->mTitle->getArticleId() ) {
826 $nav_urls['recentchangeslinked'] = array(
827 'href' => $this->makeSpecialUrl("Recentchangeslinked/$this->thispage")
828 );
829 }
830 if ($wgUseTrackbacks)
831 $nav_urls['trackbacklink'] = array(
832 'href' => $wgTitle->trackbackURL()
833 );
834 }
835
836 if( $this->mTitle->getNamespace() == NS_USER || $this->mTitle->getNamespace() == NS_USER_TALK ) {
837 $id = User::idFromName($this->mTitle->getText());
838 $ip = User::isIP($this->mTitle->getText());
839 } else {
840 $id = 0;
841 $ip = false;
842 }
843
844 if($id || $ip) { # both anons and non-anons have contri list
845 $nav_urls['contributions'] = array(
846 'href' => $this->makeSpecialUrl('Contributions/' . $this->mTitle->getText() )
847 );
848 if ( $wgUser->isAllowed( 'protect' ) )
849 $nav_urls['blockip'] = array(
850 'href' => $this->makeSpecialUrl( 'Blockip/' . $this->mTitle->getText() )
851 );
852 } else {
853 $nav_urls['contributions'] = false;
854 }
855 $nav_urls['emailuser'] = false;
856 if( $this->showEmailUser( $id ) ) {
857 $nav_urls['emailuser'] = array(
858 'href' => $this->makeSpecialUrl('Emailuser/' . $this->mTitle->getText() )
859 );
860 }
861 wfProfileOut( $fname );
862 return $nav_urls;
863 }
864
865 /**
866 * Generate strings used for xml 'id' names
867 * @return string
868 * @private
869 */
870 function getNameSpaceKey () {
871 switch ($this->mTitle->getNamespace()) {
872 case NS_MAIN:
873 case NS_TALK:
874 return 'nstab-main';
875 case NS_USER:
876 case NS_USER_TALK:
877 return 'nstab-user';
878 case NS_MEDIA:
879 return 'nstab-media';
880 case NS_SPECIAL:
881 return 'nstab-special';
882 case NS_PROJECT:
883 case NS_PROJECT_TALK:
884 return 'nstab-wp';
885 case NS_IMAGE:
886 case NS_IMAGE_TALK:
887 return 'nstab-image';
888 case NS_MEDIAWIKI:
889 case NS_MEDIAWIKI_TALK:
890 return 'nstab-mediawiki';
891 case NS_TEMPLATE:
892 case NS_TEMPLATE_TALK:
893 return 'nstab-template';
894 case NS_HELP:
895 case NS_HELP_TALK:
896 return 'nstab-help';
897 case NS_CATEGORY:
898 case NS_CATEGORY_TALK:
899 return 'nstab-category';
900 default:
901 return 'nstab-' . strtolower( $this->mTitle->getSubjectNsText() );
902 }
903 }
904
905 /**
906 * @access private
907 */
908 function setupUserCss() {
909 $fname = 'SkinTemplate::setupUserCss';
910 wfProfileIn( $fname );
911
912 global $wgRequest, $wgAllowUserCss, $wgUseSiteCss, $wgContLang, $wgSquidMaxage, $wgStylePath, $wgUser;
913
914 $sitecss = '';
915 $usercss = '';
916 $siteargs = '&maxage=' . $wgSquidMaxage;
917
918 # Add user-specific code if this is a user and we allow that kind of thing
919
920 if ( $wgAllowUserCss && $this->loggedin ) {
921 $action = $wgRequest->getText('action');
922
923 # if we're previewing the CSS page, use it
924 if( $this->mTitle->isCssSubpage() and $this->userCanPreview( $action ) ) {
925 $siteargs = "&smaxage=0&maxage=0";
926 $usercss = $wgRequest->getText('wpTextbox1');
927 } else {
928 $usercss = '@import "' .
929 $this->makeUrl($this->userpage . '/'.$this->skinname.'.css',
930 'action=raw&ctype=text/css') . '";' ."\n";
931 }
932
933 $siteargs .= '&ts=' . $wgUser->mTouched;
934 }
935
936 if ($wgContLang->isRTL()) $sitecss .= '@import "' . $wgStylePath . '/' . $this->stylename . '/rtl.css";' . "\n";
937
938 # If we use the site's dynamic CSS, throw that in, too
939 if ( $wgUseSiteCss ) {
940 $query = "action=raw&ctype=text/css&smaxage=$wgSquidMaxage";
941 $sitecss .= '@import "' . $this->makeNSUrl('Common.css', $query, NS_MEDIAWIKI) . '";' . "\n";
942 $sitecss .= '@import "' . $this->makeNSUrl(ucfirst($this->skinname) . '.css', $query, NS_MEDIAWIKI) . '";' . "\n";
943 $sitecss .= '@import "' . $this->makeUrl('-','action=raw&gen=css' . $siteargs) . '";' . "\n";
944 }
945
946 # If we use any dynamic CSS, make a little CDATA block out of it.
947
948 if ( !empty($sitecss) || !empty($usercss) ) {
949 $this->usercss = "/*<![CDATA[*/\n" . $sitecss . $usercss . '/*]]>*/';
950 }
951 wfProfileOut( $fname );
952 }
953
954 /**
955 * @access private
956 */
957 function setupUserJs() {
958 $fname = 'SkinTemplate::setupUserJs';
959 wfProfileIn( $fname );
960
961 global $wgRequest, $wgAllowUserJs, $wgJsMimeType;
962 $action = $wgRequest->getText('action');
963
964 if( $wgAllowUserJs && $this->loggedin ) {
965 if( $this->mTitle->isJsSubpage() and $this->userCanPreview( $action ) ) {
966 # XXX: additional security check/prompt?
967 $this->userjsprev = '/*<![CDATA[*/ ' . $wgRequest->getText('wpTextbox1') . ' /*]]>*/';
968 } else {
969 $this->userjs = $this->makeUrl($this->userpage.'/'.$this->skinname.'.js', 'action=raw&ctype='.$wgJsMimeType.'&dontcountme=s');
970 }
971 }
972 wfProfileOut( $fname );
973 }
974
975 /**
976 * Code for extensions to hook into to provide per-page CSS, see
977 * extensions/PageCSS/PageCSS.php for an implementation of this.
978 *
979 * @access private
980 */
981 function setupPageCss() {
982 $fname = 'SkinTemplate::setupPageCss';
983 wfProfileIn( $fname );
984 $out = false;
985 wfRunHooks( 'SkinTemplateSetupPageCss', array( &$out, $this->mTitle->isProtected() ) );
986 wfProfileOut( $fname );
987 return $out;
988 }
989
990 /**
991 * returns css with user-specific options
992 * @access public
993 */
994
995 function getUserStylesheet() {
996 $fname = 'SkinTemplate::getUserStylesheet';
997 wfProfileIn( $fname );
998
999 global $wgUser;
1000 $s = "/* generated user stylesheet */\n";
1001 $s .= $this->reallyDoGetUserStyles();
1002 wfProfileOut( $fname );
1003 return $s;
1004 }
1005
1006 /**
1007 * @access public
1008 */
1009 function getUserJs() {
1010 $fname = 'SkinTemplate::getUserJs';
1011 wfProfileIn( $fname );
1012
1013 global $wgStylePath;
1014 $s = '/* generated javascript */';
1015 $s .= "var skin = '{$this->skinname}';\nvar stylepath = '{$wgStylePath}';";
1016 $s .= '/* MediaWiki:'.ucfirst($this->skinname)." */\n";
1017
1018 // avoid inclusion of non defined user JavaScript (with custom skins only)
1019 // by checking for default message content
1020 $msgKey = ucfirst($this->skinname).'.js';
1021 $userJS = wfMsg($msgKey);
1022 if ('&lt;'.$msgKey.'&gt;' != $userJS) {
1023 $s .= $userJS;
1024 }
1025
1026 wfProfileOut( $fname );
1027 return $s;
1028 }
1029 }
1030
1031 /**
1032 * Generic wrapper for template functions, with interface
1033 * compatible with what we use of PHPTAL 0.7.
1034 * @package MediaWiki
1035 * @subpackage Skins
1036 */
1037 class QuickTemplate {
1038 /**
1039 * @access public
1040 */
1041 function QuickTemplate() {
1042 $this->data = array();
1043 $this->translator = new MediaWiki_I18N();
1044 }
1045
1046 /**
1047 * @access public
1048 */
1049 function set( $name, $value ) {
1050 $this->data[$name] = $value;
1051 }
1052
1053 /**
1054 * @access public
1055 */
1056 function setRef($name, &$value) {
1057 $this->data[$name] =& $value;
1058 }
1059
1060 /**
1061 * @access public
1062 */
1063 function setTranslator( &$t ) {
1064 $this->translator = &$t;
1065 }
1066
1067 /**
1068 * @access public
1069 */
1070 function execute() {
1071 echo "Override this function.";
1072 }
1073
1074
1075 /**
1076 * @access private
1077 */
1078 function text( $str ) {
1079 echo htmlspecialchars( $this->data[$str] );
1080 }
1081
1082 /**
1083 * @access private
1084 */
1085 function html( $str ) {
1086 echo $this->data[$str];
1087 }
1088
1089 /**
1090 * @access private
1091 */
1092 function msg( $str ) {
1093 echo htmlspecialchars( $this->translator->translate( $str ) );
1094 }
1095
1096 /**
1097 * @access private
1098 */
1099 function msgHtml( $str ) {
1100 echo $this->translator->translate( $str );
1101 }
1102
1103 /**
1104 * An ugly, ugly hack.
1105 * @access private
1106 */
1107 function msgWiki( $str ) {
1108 global $wgParser, $wgTitle, $wgOut;
1109
1110 $text = $this->translator->translate( $str );
1111 $parserOutput = $wgParser->parse( $text, $wgTitle,
1112 $wgOut->mParserOptions, true );
1113 echo $parserOutput->getText();
1114 }
1115
1116 /**
1117 * @access private
1118 */
1119 function haveData( $str ) {
1120 return $this->data[$str];
1121 }
1122
1123 /**
1124 * @access private
1125 */
1126 function haveMsg( $str ) {
1127 $msg = $this->translator->translate( $str );
1128 return ($msg != '-') && ($msg != ''); # ????
1129 }
1130 }
1131
1132 } // end of if( defined( 'MEDIAWIKI' ) )
1133 ?>